/* 
.dark-mode {
  filter: invert(1) hue-rotate(180deg);
  background-color: #1E1E1E !important;
  background-image: none;
}


.dark-mode button {
  background-color: #E6A93F !important;
  color: white !important;
} */


/* .dark-mode img {
  filter: invert(1) hue-rotate(180deg);
} */


.dark-mode {
  filter: invert(0) brightness(0.70) contrast(1.8);
  background-color: #1E1E1E ;
  background-image: none;

  /* background-image: url(Frame35.png);
  background-size: contain; 
    background-position: center;  */


}



body {

    /* display: grid;
    grid-template-columns: 1fr; */
     /* يجعل العناصر تظهر بشكل عمودي */



    flex-direction: column; /* لضمان عرض الرأس في الأعلى */

    background-image: url(Frame25.png);
    background-size: cover; /* لجعل الصورة تغطي كامل الخلفية */
    background-position: center; 
    /* لتوسيط الصورة */

    /* background-position:top 20ptx ; */
    /* text-align: center; */
    display: flex;
    /* flex-direction: column; */
     /* تغيير الاتجاه إلى عمودي */
    /* align-items: center; */
    height: 100vh;
    margin: 0;
}


.buttonsdiv{
    display: grid;
    grid-template-columns: 1fr; /* يجعل العناصر تظهر بشكل عمودي */
 
 }
 
 .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.buttons-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 150px;
  padding: 20px;
  align-items: center;

}

button {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  background-color: #FFCE65;
  color: white;
  border: none;
  border-radius: 30px;
  width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
  /* margin: 20px;  */

}

button:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .buttons-container {
      flex-direction: column;
      gap: 50px;

  }

  button {
      width: 80%;
      margin: 10px; 

  }

  body{
    
    background-image: url(Frame28.png);
  background-size: cover;
  }
}

@media (max-width: 480px) {
  button {
      font-size: 14px;
      padding: 12px 20px;
    

  }

}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    /* height: 80px; /* أو أي ارتفاع آخر مناسب */
    /* line-height: 80px; محاذاة النص عموديًا */ 

    /* padding: 0px; إزالة padding */
    /* margin:-50px; */
        /* flex-direction: row; */


    color: var(--default-color);
    background-color: #704C8A;
    transition: all 0.5s;
    /* z-index: 997; */
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    z-index: 1000; /* تأكد من أنه فوق العناصر الأخرى */

    
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 80px;
    margin-right: 8px;

  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--heading-color);
  }
/*   
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
  font-weight: bold;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
  }
   */
  /* .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    color: #ffffff;
    background: color-mix(in srgb, #ffffff, transparent 15%);
  } */
  
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo img {
    max-height: 50px;
    margin-right: 8px;
  }
  
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}
